home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cc01.arc / BEEP.C < prev    next >
Text File  |  1986-03-14  |  190b  |  16 lines

  1. /* beep2 */
  2. /* a longer beep */
  3.  
  4. #define LIMIT 10000
  5.  
  6. main() {
  7.     int store;
  8.     int count = 0;
  9.  
  10.     store = inp(97);
  11.     outp(97, 79);
  12.     while (count++ < LIMIT)
  13.         ;
  14.     outp(97, store);
  15. }
  16.